home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / educate / perlb161.zip / PERLIB32.EXE / 0 / RCDATA / TFRMFINDELEMENT / TFRMFINDELEMENT.txt
Text File  |  1997-04-27  |  5KB  |  219 lines

  1. object frmFindElement: TfrmFindElement
  2.   Left = 272
  3.   Top = 268
  4.   HelpContext = 4
  5.   HorzScrollBar.Visible = False
  6.   VertScrollBar.Visible = False
  7.   BorderIcons = [biSystemMenu]
  8.   BorderStyle = bsDialog
  9.   Caption = 'Find Element'
  10.   ClientHeight = 266
  11.   ClientWidth = 409
  12.   Font.Color = clWindowText
  13.   Font.Height = -13
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   FormStyle = fsStayOnTop
  17.   KeyPreview = True
  18.   Position = poDefaultPosOnly
  19.   OnCreate = FormCreate
  20.   OnDestroy = FormDestroy
  21.   OnShow = FormShow
  22.   PixelsPerInch = 120
  23.   TextHeight = 16
  24.   object butOK: TButton
  25.     Left = 308
  26.     Top = 232
  27.     Width = 93
  28.     Height = 29
  29.     Caption = '&OK'
  30.     Default = True
  31.     TabOrder = 2
  32.     OnClick = butClick
  33.   end
  34.   object butCancel: TButton
  35.     Left = 208
  36.     Top = 232
  37.     Width = 93
  38.     Height = 29
  39.     Cancel = True
  40.     Caption = 'C&ancel'
  41.     TabOrder = 1
  42.     OnClick = butClick
  43.   end
  44.   object butHelp: TButton
  45.     Left = 108
  46.     Top = 232
  47.     Width = 93
  48.     Height = 29
  49.     Caption = '&Help'
  50.     TabOrder = 0
  51.     OnClick = butClick
  52.   end
  53.   object pageFind: TPageControl
  54.     Left = 4
  55.     Top = 4
  56.     Width = 401
  57.     Height = 221
  58.     ActivePage = tabName
  59.     TabOrder = 3
  60.     TabStop = False
  61.     object tabName: TTabSheet
  62.       Caption = '&Name'
  63.       object Label1: TLabel
  64.         Left = 8
  65.         Top = 8
  66.         Width = 373
  67.         Height = 37
  68.         AutoSize = False
  69.         Caption = 
  70.           'Type the partial name of the element you wish to search for, and' +
  71.           '/or browse through the list for the exact name:'
  72.         Transparent = True
  73.       end
  74.       object txtName: TEdit
  75.         Left = 24
  76.         Top = 48
  77.         Width = 205
  78.         Height = 24
  79.         AutoSize = False
  80.         TabOrder = 0
  81.         OnChange = txtChange
  82.       end
  83.       object lstName: TListBox
  84.         Left = 24
  85.         Top = 76
  86.         Width = 205
  87.         Height = 93
  88.         ItemHeight = 16
  89.         Sorted = True
  90.         TabOrder = 1
  91.         OnClick = lstClick
  92.         OnDblClick = lstDblClick
  93.       end
  94.     end
  95.     object tabSymbol: TTabSheet
  96.       Caption = '&Symbol'
  97.       object Label2: TLabel
  98.         Left = 8
  99.         Top = 8
  100.         Width = 373
  101.         Height = 37
  102.         AutoSize = False
  103.         Caption = 
  104.           'Type the partial symbol of the element you wish to search for, a' +
  105.           'nd/or browse through the list for the exact symbol name:'
  106.         Transparent = True
  107.       end
  108.       object txtSymbol: TEdit
  109.         Left = 24
  110.         Top = 48
  111.         Width = 205
  112.         Height = 24
  113.         AutoSize = False
  114.         TabOrder = 0
  115.         OnChange = txtChange
  116.       end
  117.       object lstSymbol: TListBox
  118.         Left = 24
  119.         Top = 76
  120.         Width = 205
  121.         Height = 93
  122.         ItemHeight = 16
  123.         Sorted = True
  124.         TabOrder = 1
  125.         OnClick = lstClick
  126.         OnDblClick = lstDblClick
  127.       end
  128.     end
  129.     object tabProperty: TTabSheet
  130.       Caption = '&Property'
  131.       object Label3: TLabel
  132.         Left = 8
  133.         Top = 8
  134.         Width = 373
  135.         Height = 37
  136.         AutoSize = False
  137.         Caption = 
  138.           'Choose among the different properties available from the list bo' +
  139.           'x below, and narrow your search by editing the range:'
  140.         Transparent = True
  141.       end
  142.       object Label4: TLabel
  143.         Left = 256
  144.         Top = 48
  145.         Width = 65
  146.         Height = 16
  147.         AutoSize = False
  148.         Caption = '&Lower limit:'
  149.         FocusControl = txtLowerLimit
  150.         Transparent = True
  151.       end
  152.       object Label5: TLabel
  153.         Left = 256
  154.         Top = 96
  155.         Width = 67
  156.         Height = 16
  157.         AutoSize = False
  158.         Caption = '&Upper limit:'
  159.         FocusControl = txtupperLimit
  160.         Transparent = True
  161.       end
  162.       object lstProperty: TListBox
  163.         Left = 24
  164.         Top = 76
  165.         Width = 205
  166.         Height = 93
  167.         ItemHeight = 16
  168.         TabOrder = 0
  169.         OnDblClick = lstDblClick
  170.       end
  171.       object cmbProperty: TComboBox
  172.         Left = 24
  173.         Top = 48
  174.         Width = 205
  175.         Height = 24
  176.         Style = csDropDownList
  177.         ItemHeight = 0
  178.         Sorted = True
  179.         TabOrder = 1
  180.         OnChange = cmbPropertyChange
  181.       end
  182.       object txtLowerLimit: TEdit
  183.         Left = 256
  184.         Top = 68
  185.         Width = 113
  186.         Height = 24
  187.         AutoSize = False
  188.         TabOrder = 2
  189.       end
  190.       object txtupperLimit: TEdit
  191.         Left = 256
  192.         Top = 116
  193.         Width = 113
  194.         Height = 24
  195.         AutoSize = False
  196.         TabOrder = 3
  197.       end
  198.       object butRefresh: TButton
  199.         Left = 236
  200.         Top = 144
  201.         Width = 73
  202.         Height = 25
  203.         Caption = '&Refresh'
  204.         TabOrder = 4
  205.         OnClick = butPropClick
  206.       end
  207.       object butReset: TButton
  208.         Left = 312
  209.         Top = 144
  210.         Width = 73
  211.         Height = 25
  212.         Caption = 'R&eset'
  213.         TabOrder = 5
  214.         OnClick = butPropClick
  215.       end
  216.     end
  217.   end
  218. end
  219.